VERSION 5.00 Begin VB.Form frmSort BorderStyle = 3 'Fixed Dialog Caption = "Sort by..." ClientHeight = 1485 ClientLeft = 45 ClientTop = 330 ClientWidth = 3480 BeginProperty Font Name = "Tahoma" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Icon = "frmSort.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1485 ScaleWidth = 3480 ShowInTaskbar = 0 'False StartUpPosition = 3 'Windows Default Begin VB.CommandButton cmdCancel Caption = "&Cancel" Height = 375 Left = 2400 TabIndex = 3 Top = 960 Width = 975 End Begin VB.CommandButton cmdOK Caption = "&Sort" Default = -1 'True Height = 375 Left = 1200 TabIndex = 2 Top = 960 Width = 1095 End Begin VB.ComboBox cboData Height = 315 Left = 1080 TabIndex = 1 Top = 120 Width = 2055 End Begin VB.Label lblSort AutoSize = -1 'True Caption = "&Sort by:" Height = 195 Left = 240 TabIndex = 0 Top = 120 Width = 585 End Attribute VB_Name = "frmSort" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False '---------------------------------------- '- Name: Sam Huggill '- Email: sam@vbsquare.com '- Web: http://www.vbsquare.com/ '- Company: Lighthouse Internet Solutions '- Date/Time: 14/08/99 11:33:32 '---------------------------------------- '- Notes: Simple sort form '---------------------------------------- Option Explicit Private Sub cmdCancel_Click() Unload Me End Sub Private Sub cmdOK_Click() frmMain.ctlFavourites1.Sort Me Unload Me End Sub Private Sub Form_Load() CentreForm Me End Sub